home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #6 / Amiga Plus CD - 2004 - No. 06.iso / AmiSoft / Misc / emu / vic-emu-tools.lha / vic-emu-tools / vicstart < prev   
AmigaDOS Script File  |  2004-05-24  |  800b  |  37 lines

  1. .key namn,del2
  2.  
  3. ;------------------------------------------------
  4. ;Script to easily load plugin games with vic-emu.
  5. ;Usage:
  6. ;   vicstart cartridgeimage
  7. ;or
  8. ;   vicstart part1 part2
  9. ;
  10. ;vic-emu 0.65 must be available in VIC: (make assign)
  11. ;PRGinfo must be available in C:
  12. ;
  13. ;Also use my SlowDown program to slow down the
  14. ;emulation - 
  15. ;  http://user.tninet.se/~hlw771b/amigastuff.html
  16. ;------------------------------------------------
  17.  
  18. if exists ram:vic
  19.     skip opa
  20. endif
  21.  
  22. makedir ram:vic
  23. copy vic:#? ram:vic/
  24.  
  25. lab opa
  26.  
  27. if "a" EQ "a<del2>"
  28.     copy "<namn>" ram:vic/program
  29.     cd ram:vic/
  30.     run vic-20 -s 0 -k 0 `prginfo -2 program` program
  31. else
  32.     copy "<namn>" ram:vic/program
  33.     copy "<del2>" ram:vic/program2
  34.     cd ram:vic/
  35.     run vic-20 -s 0 -k 0 `prginfo -2 program` program `prginfo -2 program2` program2
  36. endif
  37.